home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------------
- // InstalledFontsList.cs ⌐ 2001 by Charles Petzold
- //-------------------------------------------------
- using System;
- using System.Drawing;
- using System.Drawing.Text;
- using System.Windows.Forms;
-
- class InstalledFontsList: FamiliesList
- {
- public new static void Main()
- {
- Application.Run(new InstalledFontsList());
- }
- public InstalledFontsList()
- {
- Text = "Lista de InstalledFontCollection";
- }
- protected override FontFamily[] GetFontFamilyArray(Graphics grfx)
- {
- FontCollection fc = new InstalledFontCollection();
- return fc.Families;
- }
- }
-